From 4df2a4c82c5a674522aeb83b5380032500f9b173 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Tue, 12 Feb 2019 13:31:58 -0500 Subject: [PATCH] icon theme: Remove fallbacks We want to include all needed icons as resources, so disable the fallbacks and see what comes up. --- gtk/gtkicontheme.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gtk/gtkicontheme.c b/gtk/gtkicontheme.c index f1b8545cda..d41d31310e 100644 --- a/gtk/gtkicontheme.c +++ b/gtk/gtkicontheme.c @@ -1300,8 +1300,10 @@ load_themes (GtkIconTheme *icon_theme) * and gnome is a pragmatic solution to prevent missing icons in * GTK+ applications when run under, e.g. KDE. */ +#if 0 insert_theme (icon_theme, DEFAULT_ICON_THEME); insert_theme (icon_theme, "gnome"); +#endif insert_theme (icon_theme, FALLBACK_ICON_THEME); priv->themes = g_list_reverse (priv->themes); -- 2.30.2